翻訳と辞書
Words near each other
・ Weak interpretability
・ Weak inverse
・ Weak isospin
・ Weak key
・ Weak localization
・ Weak measurement
・ Weak Moments of the Shadows
・ Weak n-category
・ Weak noun
・ Weak NP-completeness
・ Weak ontology
・ Weak ontology (political concept)
・ Weak operator topology
・ Weak ordering
・ Weak position (poetry)
Weak reference
・ Weak salt
・ Weak Selection
・ Weak sister
・ Weak solution
・ Weak Spot
・ Weak symbol
・ Weak topology
・ Weak topology (polar topology)
・ Weak trace-class operator
・ Weak two bid
・ Weak value
・ Weak verb
・ Weak-Link Approach
・ Weak-star topology


Dictionary Lists
翻訳と辞書 辞書検索 [ 開発暫定版 ]
スポンサード リンク

Weak reference : ウィキペディア英語版
Weak reference
In computer programming, a weak reference is a reference that does not protect the referenced object from collection by a garbage collector, unlike a strong reference. An object referenced ''only'' by weak references – meaning "every chain of references that reaches the object includes at least one weak reference as a link" – is considered ''weakly reachable,'' and can be treated as unreachable and so may be collected at any time. Some garbage-collected languages feature or support various levels of weak references, such as Java, C#, Python,〔(8.8. weakref — Weak references ), The Python Standard Library〕 Perl, and Lisp.
==Uses==
Weak references have a number of common use cases. When using reference counting garbage collection, weak references can break reference cycles, by using a weak reference for a link in the cycle. When one has an associative array (mapping, hash map) whose keys are (references to) objects, for example to hold auxiliary value about objects, using weak references for the keys avoids keeping the objects alive just because of their use as a key. When one has an object where other objects are registered, such as in the observer pattern (particularly in event handling), if a strong reference is kept, objects must be explicitly unregistered, otherwise a memory leak occurs (the lapsed listener problem), while a weak reference removes the need to unregister. When holding cached data that can be recreated if necessary, weak references allow the cache to be reclaimed, effectively producing discardable memory. This last case (a cache) is distinct from others, as it is preferable that the objects only be garbage collected if necessary, and there is thus a need for finer distinctions within weak references, here a stronger form of a weak reference. In many cases weak references do not need to be directly used, instead simply using a weak array or other container whose keys or values are weak references.

抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)
ウィキペディアで「Weak reference」の詳細全文を読む



スポンサード リンク
翻訳と辞書 : 翻訳のためのインターネットリソース

Copyright(C) kotoba.ne.jp 1997-2016. All Rights Reserved.